home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / DESKLIBC / SOURCES.ZIP / DeskLib / !DLSources / Libraries / LinkList / DLLDef
Text File  |  1995-04-04  |  403b  |  34 lines

  1. ;
  2. ; cdll definition file for <name>
  3. ;
  4.  
  5. name "LinkList"
  6.   version 1.00
  7.   author "DeskLib"
  8.  
  9. ; --- Exported symbols ---
  10.  
  11. exports
  12. {
  13.   LinkList_ListLength
  14.   LinkList_Unlink
  15.   LinkList_InList
  16.   LinkList_InsertBefore
  17.   LinkList_AddToTail
  18.   LinkList_AddToHead
  19.   LinkList_InsertAfter
  20. }
  21.  
  22. ; --- Object files ---
  23.  
  24. objects
  25. {
  26.   o.InList
  27.   o.AddToHead
  28.   o.AddToTail
  29.   o.ListLength
  30.   o.InsertB
  31.   o.InsertA
  32.   o.Unlink
  33. }
  34.